summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/items-tech/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp/(evcp)/items-tech/layout.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/items-tech/layout.tsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/[lng]/evcp/(evcp)/items-tech/layout.tsx b/app/[lng]/evcp/(evcp)/items-tech/layout.tsx
new file mode 100644
index 00000000..5eb88325
--- /dev/null
+++ b/app/[lng]/evcp/(evcp)/items-tech/layout.tsx
@@ -0,0 +1,25 @@
+import * as React from "react"
+import { ItemTechContainer } from "@/components/items-tech/item-tech-container"
+import { Shell } from "@/components/shell"
+
+// Layout 컴포넌트는 서버 컴포넌트입니다
+export default function ItemsShipLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ // 아이템 타입 정의
+ const itemTypes = [
+ { id: "ship", name: "조선 아이템" },
+ { id: "top", name: "해양 TOP" },
+ { id: "hull", name: "해양 HULL" },
+ ]
+
+ return (
+ <Shell className="gap-4">
+ <ItemTechContainer itemTypes={itemTypes}>
+ {children}
+ </ItemTechContainer>
+ </Shell>
+ )
+}